Updated everything for the new stabel release#31
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project for the v1.0.0 “stable” release by bumping package versions, refreshing benchmark documentation, and making small API/behavior tweaks in the Python and Rust crates.
Changes:
- Bump crate/package versions to
1.0.0and update README badges/status accordingly. - Refresh benchmark docs (Markdown + MDX) with new numbers, methodology, and reproduction steps.
- Adjust Python
export_replay()scanning logic and narrowexceptclauses; re-export additional Rust facade types fromcortexadb-core.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/resources/benchmarks.md | Updates benchmark results/methodology and reproduction instructions. |
| docs/content/docs/resources/benchmarks.mdx | Updates docs site benchmarks and presentation for v1.0.0. |
| crates/cortexadb-py/pyproject.toml | Bumps Python package version to 1.0.0. |
| crates/cortexadb-py/cortexadb/client.py | Tweaks exception handling and changes replay export scanning behavior. |
| crates/cortexadb-core/src/lib.rs | Re-exports additional facade types from the crate root. |
| crates/cortexadb-core/src/engine.rs | Renames a helper and adjusts visibility/docs around state machine mutation. |
| crates/cortexadb-core/Cargo.toml | Bumps Rust crate version to 1.0.0. |
| README.md | Updates stable status + v1.0.0 benchmark summary and badges. |
| Cargo.lock | Updates locked version metadata for cortexadb-core. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+322
to
+323
| scan_limit = max(total_live * 4, 1000) | ||
| while found < total_live and mid <= scan_limit: |
Comment on lines
+44
to
46
| # Build the Rust extension (release mode for published numbers) | ||
| cd crates/cortexadb-py | ||
| maturin develop --release |
Comment on lines
318
to
+323
| stats = self.stats() | ||
| for i in range(1, stats.entries + 1): | ||
| total_live = stats.entries | ||
| found = 0 | ||
| mid = 1 | ||
| scan_limit = max(total_live * 4, 1000) | ||
| while found < total_live and mid <= scan_limit: |
Comment on lines
+339
to
340
| except Exception: | ||
| pass |
| self.state_machine.apply_command(cmd)?; | ||
|
|
||
| // 5. Update tracking | ||
| // 3. Update tracking |
| /// NOTE: If you modify state directly (not via execute_command), | ||
| /// you bypass WAL durability! Use execute_command() instead. | ||
| pub fn get_state_machine_mut(&mut self) -> &mut StateMachine { | ||
| /// Get mutable reference to the state machine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.